Skip to main content
GET
/
api
/
v1
/
context
/
add-async
/
{id}
/
status
Get status of a context add job
curl --request GET \
  --url https://platform-backend.getalchemystai.com/api/v1/context/add-async/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "jobId": "job_01HXYZABC",
  "status": "completed",
  "result": {},
  "attemptsMade": 1,
  "failedReason": "",
  "finishedOn": 1712345678901,
  "processedOn": 1712345670000
}

Documentation Index

Fetch the complete documentation index at: https://getalchemystai.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Job ID to check status for

Response

Job status and result

success
boolean
required
Example:

true

jobId
string
required
Example:

"job_01HXYZABC"

status
string
required
Example:

"completed"

result
object

Result of the job (if available)

attemptsMade
number
Example:

1

failedReason
string
Example:

""

finishedOn
number
Example:

1712345678901

processedOn
number
Example:

1712345670000